home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Latest Shareware Programs: Warp / OS-2 WARP - Latest Shareware Programs.iso / zipped.os2 / gnu_c.2 / readme.260 < prev    next >
Text File  |  1994-10-16  |  1KB  |  41 lines

  1. This is GCC 2.6.0 for emx.  It is packaged as follows:
  2.  
  3.   README.260            This file
  4.   gcc260b1.zip          Binaries, part 1 (C)
  5.   gcc260b2.zip          Binaries, part 2 (C++ and Objective C)
  6.   gcc260d.zip           Documentation
  7.   gcc260p.zip           Patches
  8.   gcc260s1.zip          Source code (patched), part 1
  9.   gcc260s2.zip          Source code (patched), part 2
  10.   gcc260s3.zip          Source code (patched), part 3
  11.  
  12. Release notes:
  13.  
  14. - emxfix10.zip and the associated emxrt.zip are required for compiling
  15.   and running C++ and Objective C programs
  16.  
  17. - The -Zwait option is no longer available
  18.  
  19. - There is a new option: -Zmap.  However, it does not work with the
  20.   current versions of emxomfld, ld, and emxbind
  21.  
  22. - The current version of emxomf does not support the new C++ `bool'
  23.   type (you'll get some warnings).  IPMD doesn't support `bool',
  24.   either
  25.  
  26. - The -o option is no longer required for creating an .exe or .dll
  27.   file; by default the name of the executable file is constructed from
  28.   the first file name given on the command line:
  29.  
  30.         gcc prog1.c prog2.c
  31.  
  32.   is equivalent to
  33.  
  34.         gcc -o prog1.exe prog1.c prog2.c
  35.  
  36.   This does not apply if you suppress linking with options like -c and
  37.   -S.  If the -Zdll option is given, .dll will be appended instead of
  38.   .exe
  39.  
  40. - _mcount()'s argument is now passed on the stack
  41.